home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / othergnu / ms.zoo / config.h next >
Encoding:
C/C++ Source or Header  |  1990-04-18  |  2.1 KB  |  93 lines

  1.  /**********************************************************************\
  2.  *                                    *
  3.  *              Configure to your env                *
  4.  *                                    *
  5.  \**********************************************************************/
  6.  
  7. /*
  8.  * Home dir
  9.  */
  10. char *HOME =  "e:\\bammi";
  11.  
  12. /*
  13.  * Path for external commands
  14.  */
  15. char *path[]= {
  16.     "",            /* implicit ".\" */
  17.     "g:\\exec\\",
  18.     "g:\\util\\",
  19.     "c:\\bin\\",
  20.     "d:\\bin\\",
  21.     "f:\\bin\\",
  22.     (char *)NULL
  23.     };
  24.  
  25. /*
  26.  * Extentions to try for external commands
  27.  *
  28.  */
  29. char *ext[] = {
  30.     ".ttp",
  31.     ".prg",
  32.     ".tos",
  33.     "",
  34.     (char *)NULL
  35.     };
  36.  
  37. /* 
  38.  * Environment in which all commands are exec
  39.  *
  40.  */
  41. char *env = 
  42. "\
  43. BISON_SIMPLE=g:\\bison\\bison.sim\0\
  44. BISON_HAIRY=g:\\bison\\bison.hai\0\
  45. FLEX_DEF=g:\\flex\\flexdef.skl\0\
  46. FLEX_FAST=g:\\flex\\flexfast.skl\0\
  47. TEXFORMATS=f:\\macros;.\0\
  48. TEXINPUTS=.;f:\\macros\0\
  49. TEXFONTS=.;f:\\tfm\0\
  50. GNULIB=g:\\lib\0\
  51. GCCEXEC=g:\\exec\\gcc-\0\
  52. SYSNAME=atari@ces.cwru.edu\0\
  53. FULLNAME=jwahar r. bammi\0\
  54. USER=bammi\0\
  55. EMACSLOADPATH=/dev/G/usr/lib/gnuemacs/lisp\0\
  56. EMACSLIB=/dev/G/usr/lib/gnuemacs/lisp\0\
  57. EMACSDOC=/dev/G/usr/lib/gnuemacs/etc\0\
  58. TERMCAP=/dev/G/usr/lib/gnuemacs/etc/termcap\0\
  59. TERM=atari\0\
  60. TZ=EST5EDT\0\
  61. PATH=g:\\exec,g:\\util,c:\\bin,d:\\bin,f:\\bin\0\
  62. TEMP=p:\0\0\0\0\
  63. ";
  64.  
  65.         
  66. /*
  67.  * Aliases
  68.  *
  69.  */
  70. typedef struct {
  71.     char *aname;    /* alias name */
  72.     char *adef;    /* command to run */
  73.     char *optarg;    /* any arguements to come before supplied args */
  74. } ALIAS;
  75.  
  76. ALIAS alias[] = {
  77.     { "cpp",    "g:\\exec\\gcc-cpp.ttp",    (char *)NULL },
  78.     { "gas",    "g:\\exec\\gcc-as.ttp",        (char *)NULL },
  79.     { "ar",    "g:\\exec\\gcc-ar.ttp",     (char *)NULL },
  80.     { "ld",    "g:\\exec\\gcc-ld.ttp",     (char *)NULL },
  81.     { "xld",    "g:\\exec\\sym-ld.ttp",     (char *)NULL },
  82.     { "gcc",    "g:\\exec\\gcc.ttp",         (char *)NULL },
  83.     { "make",    "g:\\util\\xmake.ttp",         (char *)NULL },
  84.     { "bison",    "g:\\bison\\bison.ttp",     (char *)NULL },
  85.     { "x",    "c:\\bin\\mg.ttp",        (char *)NULL },
  86.     { "flex",    "g:\\flex\\flex.ttp",        (char *)NULL },
  87.     { "tex",    "f:\\bin\\tex.ttp",        (char *)NULL },
  88.     { "latex",    "f:\\bin\\latex.ttp",         (char *)NULL },
  89.     { (char *)NULL, (char *)NULL,         (char *)NULL }
  90. };
  91.  
  92. /* - eof - */
  93.